home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.2 for Intel / NeXTSTEP 3.2 for Intel.iso / NextAdmin / SimpleNetworkStarter.app / rc.restart < prev    next >
Encoding:
Text File  |  1992-03-17  |  4.0 KB  |  172 lines

  1. HOME=/; export HOME
  2. PATH=/etc:/usr/etc:/bin:/usr/bin:/usr/ucb; export PATH
  3.  
  4. # Read in configuration information
  5. . /etc/hostconfig
  6. case $? in
  7.     0)
  8.     ;;
  9.     *)
  10.     (echo "Error reading hostconfig")            >/dev/console
  11.     exit 1
  12.     ;;
  13. esac
  14.  
  15. ifconfigerror=0
  16. if [ "${INETADDR=-AUTOMATIC-}" != "-NO-" ]
  17. then
  18.     (echo "Configuring ethernet interface to $INETADDR")    >/dev/console
  19.     # Figure out netmask and broadcast flags
  20.     if [ -n "${IPNETMASK=}" ]
  21.     then
  22.         IFFLAGS="netmask $IPNETMASK"
  23.     else
  24.         IFFLAGS=
  25.     fi
  26.     if [ "${IPBROADCAST=-AUTOMATIC-}" != "-AUTOMATIC-" -a -n "${IPBROADCAST}" ]
  27.     then
  28.         IFFLAGS="$IFFLAGS broadcast $IPBROADCAST"
  29.         (echo "Setting broadcast address to $IPBROADCAST.") > /dev/console
  30.     else
  31.         (echo "Using default broadcast address.") > /dev/console
  32.     fi
  33.     fbshow -A -B -E -s 3 "Checking" "for" "Network..."
  34.     # ifconfig knows about -AUTOMATIC-
  35.     ifconfig en0 $INETADDR $IFFLAGS -trailers up \
  36.                             >/dev/console 2>&1
  37.     ifconfigerror=$?
  38.     if [ $ifconfigerror -ne 0 -a "${HOSTNAME=-AUTOMATIC-}" = "-AUTOMATIC-" ]
  39.     then
  40.         HOSTNAME=-NO-
  41.     fi
  42. else
  43.     (echo "Skipping ethernet interface configuration")    >/dev/console
  44. fi
  45.  
  46. hosterror=0
  47. if [ "${HOSTNAME=-AUTOMATIC-}" != "-NO-" ]
  48. then
  49.     (echo "Configuring hostname to $HOSTNAME")        >/dev/console
  50.     # hostname knows about -AUTOMATIC-
  51.     hostname $HOSTNAME                >/dev/console 2>&1
  52.     hosterror=$?
  53. else
  54.     # This is NOT the place to change your hostname
  55.     (echo "Setting hostname to localhost")        >/dev/console
  56.     /bin/hostname localhost
  57. fi
  58. sync
  59.  
  60. # Exit with error if failed above
  61. # Note that ifconfig exits 1 if the error is a show stopper and -1 if it
  62. # is not.
  63. if [ $ifconfigerror -eq 1 -o $hosterror -ne 0 ]
  64. then
  65.     exit 1
  66. fi
  67.  
  68. #
  69.  
  70. # Determine if the network is up. 
  71. # Used later on when deciding if various daemons should run
  72. #
  73. if (ifconfig en0 | grep UP) > /dev/null 2>&1; then
  74.     NETWORKUP=-YES-
  75. else
  76.     NETWORKUP=-NO-
  77. fi
  78.  
  79. # IP routing
  80. case ${ROUTER=-NO-} in
  81.     -ROUTED-)
  82.     if [ -f /usr/etc/routed -a $NETWORKUP = "-YES-" ]; then
  83.         ROUTED_PID=`ps ax | grep "routed" | grep -v grep | sort -n | head -1 | awk '{ print $1 }'`
  84.         if [ "$ROUTED_PID" = "" ]; then
  85.             /usr/etc/routed && (echo -n ' routed')        >/dev/console
  86.         fi
  87.     fi
  88.     ;;
  89.     -NO-)
  90.     ;;
  91.     *)
  92.     if [ -f /usr/etc/route ]; then
  93.         /usr/etc/route add default $ROUTER 1    >/dev/console 2>&1
  94.     fi
  95.     ;;
  96. esac
  97. if [ -f /usr/etc/biod -a $NETWORKUP = "-YES-" ]; then
  98.     /usr/etc/biod 4 && (echo -n ' biod')             >/dev/console
  99. fi
  100. (echo '.')                            >/dev/console
  101.  
  102. #
  103. # Restart netinfo network domain
  104. #
  105. NETWORK_PID=`ps axn | grep "netinfod network" | sort -n | grep -v grep | awk '{ print $1 }'`
  106. if [ "$NETWORK_PID" != "" ]; then
  107.     kill $NETWORK_PID
  108. fi
  109.  
  110. sleep 5
  111.  
  112. NIBINDD_PID=`ps axn | grep nibindd | sort -n | grep -v grep | awk '{ print $1 }'`
  113. if [ "$NIBINDD_PID" != "" ]; then
  114.     kill $NIBINDD_PID
  115. fi
  116.  
  117. LOCAL_PID=`ps axn | grep "netinfod local" | sort -n | grep -v grep | awk '{ print $1 }'`
  118. if [ "$LOCAL_PID" != "" ]; then
  119.     kill $LOCAL_PID
  120. fi
  121.  
  122. /bin/rm -f /etc/netinfo/*.nidb/checksum
  123. nibindd
  124.  
  125. #
  126. # Kick lookupd
  127. #
  128. LOOKUPD_PID=`ps ax | grep lookupd | sort -n | grep -v grep | awk '{ print $1 }'`
  129. if [ "$LOOKUPD_PID" != "" ]; then
  130.     kill -HUP $LOOKUPD_PID
  131. fi
  132.  
  133. #
  134. # Check for proper Time Service setup, start before using NFS.
  135. #
  136. case ${TIME=-AUTOMATIC-} in
  137.     -AUTOMATIC-)
  138.     if [ -f /usr/etc/ntpd -a $NETWORKUP = "-YES-" ]; then
  139.         /usr/etc/ntp -F             >/dev/console
  140.         NTPD_PID=`ps ax | grep "ntpd" | grep -v grep | sort -n | head -1 | awk '{ print $1 }'`
  141.         if [ "$NTPD_PID" = "" ]; then
  142.             /usr/etc/ntpd && (echo -n ' ntpd')    >/dev/console
  143.         fi
  144.     fi
  145.     ;;
  146.     -NO-)
  147.     ;;
  148.     *)
  149.     ;;
  150. esac
  151.  
  152. mount -vat nfs                         >/dev/console 2>&1
  153.  
  154. # Fileservice daemons are needed to export filesystems
  155. (echo -n 'fileserver daemons:')                    >/dev/console
  156.  
  157. if [ -h /Net -o -f /Net ]; then
  158.     (echo "Warning: NeXT NFS automounter did not run.")    >/dev/console
  159. else
  160.     if [ -f /usr/etc/autonfsmount -a $NETWORKUP = "-YES-" ]; then
  161.         AUTO_PID=`ps ax | grep "ntpd" | grep -v grep | sort -n | head -1 | awk '{ print $1 }'`
  162.         if [ "$AUTO_PID" = "" ]; then
  163.             /usr/etc/autonfsmount    -tm 10 -tl 43200 \
  164.                 -a /private -m /Net -fstab \
  165.                 && (echo -n ' autonfsmount') >/dev/console 2>&1
  166.         fi
  167.     fi
  168. fi
  169.  
  170. exit 0
  171.  
  172.